home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / comm / voxel101.zip / VOIXELDA.REX < prev    next >
OS/2 REXX Batch file  |  1994-02-06  |  562b  |  24 lines

  1. /* DataScript for VoiXEL                    */
  2. /* Start BBS or somewhat.                    */
  3. /* The program must exit after loggoff!!    */
  4. /* This script will start Term and            */
  5. /* execute VoiXEL:VoiXELminiBBS.rexx        */
  6. /* Be sure that Term's settings are correct    */
  7.  
  8. options results
  9.  
  10. say "DataScript For Term And VoiXEL"
  11.  
  12. ADDRESS COMMAND 'VoiXEL:VoiXELwaitforport -q TERM'
  13.  
  14. if RC = 0 then
  15.     do
  16.         exit        /* exit if Term already is running */
  17.                     /* Can't initialize the serial port correct then.. */
  18.     end
  19. else
  20.     do
  21.         ADDRESS COMMAND 'Term:term SYNC STARTUP VoiXEL:VoiXELminiBBS.rexx'
  22.     end
  23. exit
  24.